home *** CD-ROM | disk | FTP | other *** search
/ Windows 95 API Bible / Windows 95 API Bible 3 Disc Set.iso / Win32 API Bible Book 1 of 3 / CHAPTER5 / CALMGFLT.C next >
C/C++ Source or Header  |  1996-01-14  |  6KB  |  214 lines

  1.  
  2. #include <windows.h>  
  3. #include "CalMgFlt.h" 
  4.  
  5.  
  6. #if defined (WIN32)
  7.     #define IS_WIN32 TRUE
  8. #else
  9.     #define IS_WIN32 FALSE
  10. #endif
  11.  
  12. #define IS_NT      IS_WIN32 && (BOOL)(GetVersion() < 0x80000000)
  13. #define IS_WIN32S  IS_WIN32 && (BOOL)(!(IS_NT) && (LOBYTE(LOWORD(GetVersion()))<4))
  14. #define IS_WIN95   (BOOL)(!(IS_NT) && !(IS_WIN32S)) && IS_WIN32
  15.  
  16. HINSTANCE hInst;   // current instance
  17.  
  18. LPCTSTR lpszAppName  = "MyApp";
  19. LPCTSTR lpszTitle    = "My Application"; 
  20.  
  21. BOOL  bFilterIt = FALSE;
  22. HHOOK hHook     = NULL;
  23.  
  24. BOOL RegisterWin95( CONST WNDCLASS* lpwc );
  25. LRESULT CALLBACK HookProcedure( int nCode, WPARAM wParam, LPARAM lParam );
  26.  
  27.  
  28. int APIENTRY WinMain( HINSTANCE hInstance, HINSTANCE hPrevInstance,
  29.                       LPTSTR lpCmdLine, int nCmdShow)
  30. {
  31.    MSG      msg;
  32.    HWND     hWnd; 
  33.    BOOL     bHooked;
  34.    WNDCLASS wc;
  35.  
  36.    // Register the main application window class.
  37.    //............................................
  38.    wc.style         = CS_HREDRAW | CS_VREDRAW;
  39.    wc.lpfnWndProc   = (WNDPROC)WndProc;       
  40.    wc.cbClsExtra    = 0;                      
  41.    wc.cbWndExtra    = 0;                      
  42.    wc.hInstance     = hInstance;              
  43.    wc.hIcon         = LoadIcon( hInstance, lpszAppName ); 
  44.    wc.hCursor       = LoadCursor(NULL, IDC_ARROW);
  45.    wc.hbrBackground = (HBRUSH)(COLOR_WINDOW+1);
  46.    wc.lpszMenuName  = lpszAppName;              
  47.    wc.lpszClassName = lpszAppName;              
  48.  
  49.    if ( IS_WIN95 )
  50.    {
  51.       if ( !RegisterWin95( &wc ) )
  52.          return( FALSE );
  53.    }
  54.    else if ( !RegisterClass( &wc ) )
  55.       return( FALSE );
  56.  
  57.    hInst = hInstance; 
  58.  
  59.    // Create the main application window.
  60.    //....................................
  61.    hWnd = CreateWindow( lpszAppName, 
  62.                         lpszTitle,    
  63.                         WS_OVERLAPPEDWINDOW, 
  64.                         CW_USEDEFAULT, 0, 
  65.                         CW_USEDEFAULT, 0,  
  66.                         NULL,              
  67.                         NULL,              
  68.                         hInstance,         
  69.                         NULL               
  70.                       );
  71.  
  72.    if ( !hWnd ) 
  73.       return( FALSE );
  74.  
  75.    if ( hHook = SetWindowsHookEx( WH_MSGFILTER, (HOOKPROC)HookProcedure, NULL, 
  76.                                   GetWindowThreadProcessId( hWnd, NULL ) ) )
  77.    {
  78.       bHooked = TRUE;
  79.    }
  80.  
  81.    ShowWindow( hWnd, nCmdShow ); 
  82.    UpdateWindow( hWnd );         
  83.  
  84.    while( GetMessage( &msg, NULL, 0, 0) )   
  85.    {
  86.       // If we are filtering then call the message filter.
  87.       //..................................................
  88.       if ( bHooked && bFilterIt )
  89.          CallMsgFilter( &msg, WM_USER );
  90.  
  91.       TranslateMessage( &msg ); 
  92.       DispatchMessage( &msg );  
  93.    }
  94.  
  95.    UnhookWindowsHookEx( hHook );
  96.    
  97.    return( msg.wParam ); 
  98. }
  99.  
  100.  
  101. LRESULT CALLBACK HookProcedure( int nCode, WPARAM wParam, LPARAM lParam )
  102. {
  103.    // If this is not our code then pass it on to the next
  104.    // filter proc (if any).
  105.    //.....................................................
  106.    if ( nCode != WM_USER )
  107.       CallNextHookEx( hHook, nCode, wParam, lParam );
  108.    else
  109.    {
  110.       LPMSG msg = (LPMSG)lParam;
  111.  
  112.       if ( msg->message == WM_PAINT )
  113.       {
  114.          MessageBeep(0);
  115.          return( TRUE );
  116.       }
  117.    }
  118.  
  119.    return( FALSE );
  120. }
  121.  
  122.  
  123. BOOL RegisterWin95( CONST WNDCLASS* lpwc )
  124. {
  125.    WNDCLASSEX wcex;
  126.  
  127.    wcex.style         = lpwc->style;
  128.    wcex.lpfnWndProc   = lpwc->lpfnWndProc;
  129.    wcex.cbClsExtra    = lpwc->cbClsExtra;
  130.    wcex.cbWndExtra    = lpwc->cbWndExtra;
  131.    wcex.hInstance     = lpwc->hInstance;
  132.    wcex.hIcon         = lpwc->hIcon;
  133.    wcex.hCursor       = lpwc->hCursor;
  134.    wcex.hbrBackground = lpwc->hbrBackground;
  135.    wcex.lpszMenuName  = lpwc->lpszMenuName;
  136.    wcex.lpszClassName = lpwc->lpszClassName;
  137.  
  138.    // Added elements for Windows 95.
  139.    //...............................
  140.    wcex.cbSize = sizeof(WNDCLASSEX);
  141.    wcex.hIconSm = LoadImage(wcex.hInstance, lpwc->lpszClassName, 
  142.                             IMAGE_ICON, 16, 16,
  143.                             LR_DEFAULTCOLOR );
  144.             
  145.    return RegisterClassEx( &wcex );
  146. }
  147.  
  148. LRESULT CALLBACK WndProc( HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam )
  149. {
  150.    switch( uMsg )
  151.    {
  152.       case WM_COMMAND :
  153.               switch( LOWORD( wParam ) )
  154.               {
  155.                  case IDM_TEST :
  156.                          if ( bFilterIt )
  157.                          {
  158.                             bFilterIt = FALSE;
  159.                             MessageBox( hWnd, "Filtering is OFF", lpszAppName,
  160.                                         MB_OK );
  161.                          }
  162.                          else
  163.                          {
  164.                             bFilterIt = TRUE;
  165.                             MessageBox( hWnd, "Filtering is ON", lpszAppName,
  166.                                         MB_OK );
  167.                          }
  168.                          break;
  169.  
  170.                  case IDM_ABOUT :
  171.                         DialogBox( hInst, "AboutBox", hWnd, (DLGPROC)About );
  172.                         break;
  173.  
  174.                  case IDM_EXIT :
  175.                         DestroyWindow( hWnd );
  176.                         break;
  177.               }
  178.               break;
  179.       
  180.       case WM_DESTROY :
  181.               PostQuitMessage(0);
  182.               break;
  183.  
  184.       default :
  185.             return( DefWindowProc( hWnd, uMsg, wParam, lParam ) );
  186.    }
  187.  
  188.    return( 0L );
  189. }
  190.  
  191.  
  192. LRESULT CALLBACK About( HWND hDlg,           
  193.                         UINT message,        
  194.                         WPARAM wParam,       
  195.                         LPARAM lParam)
  196. {
  197.    switch (message) 
  198.    {
  199.        case WM_INITDIALOG: 
  200.                return (TRUE);
  201.  
  202.        case WM_COMMAND:                              
  203.                if (   LOWORD(wParam) == IDOK         
  204.                    || LOWORD(wParam) == IDCANCEL)    
  205.                {
  206.                        EndDialog(hDlg, TRUE);        
  207.                        return (TRUE);
  208.                }
  209.                break;
  210.    }
  211.  
  212.    return (FALSE); 
  213. }
  214.